home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////
- // File - KPTEST_COM.H
- //
- // Common header file for user-mode and kernel-mode parts of user
- // driver.
- //
- ////////////////////////////////////////////////////////////////
- enum { KPTEST_MSG_VERSION = 1 }; // in this sample we implement a GetVersion message
-
- typedef struct {
- DWORD dwVer;
- CHAR cVer[100];
- } KPTEST_VERSION;
-
- enum { KPTEST_NO_IMPL_MESSAGE = 0x1000 };
-
- enum { KPTEST_OK = 1 };
-